home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 May: Tool Chest / Developer CD Series May 1996 (Tool Chest) (Apple Computer) (1996).iso / Sample Code / Snippets / Development Tools & Languages / AEGestalt / UInformationView.h < prev    next >
Encoding:
Text File  |  1995-02-05  |  790 b   |  38 lines  |  [TEXT/MPS ]

  1. //     UInformationView.h
  2. //     Copyright © 1991-92 by Apple Computer, Inc. All rights reserved.
  3. //    Kent Sandvik DTS
  4. //    This file contains the class TInformationView, used to present
  5. //    the information obtained over the network in the rightmost view
  6. //
  7. //    <1>        khs        1.0        First final version
  8.  
  9.  
  10. #ifndef __UINFORMATIONVIEW__
  11. #define __UINFORMATIONVIEW__
  12.  
  13. #ifndef __UAEGESTALT__
  14. #include "UAEGestalt.h"
  15. #endif
  16.  
  17.  
  18. DeclareClassDesc(TInformationView);
  19.  
  20. class TInformationView : public TView
  21. {
  22.  
  23.     DeclareClass(TInformationView);
  24.  
  25. public:
  26.     TInformationView();
  27.     virtual void Draw(const VRect& area);
  28.     virtual void DrawInformation();
  29.  
  30.     //    FIELDS
  31.     Boolean fHasGestaltInfo;
  32.     CStr255 fLabel1, fLabel2, fLabel3, fLabel4, fLabel5, fLabel6, 
  33.             fLabel7, fLabel8, fLabel9, fLabel10, fLabel11, fLabel12;
  34. };
  35.  
  36. #endif
  37.  
  38.